home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 46
/
Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso
/
-in_the_mag-
/
reader_requests
/
scilab
/
man
/
man-part1
/
cat1
/
slash.1
< prev
next >
Wrap
Text File
|
1999-09-16
|
689b
|
67 lines
/(1) Scilab Function /(1)
NAME
/ - right division and feed back
DESCRIPTION
Right division. x=A / b is the solution of x*A=b .
b/a = (a' \ b')' .
a ./ b is the matrix with entries a(i,j)/ b(i,j). If b is scalar (1x1
matrix) this operation is the same as a./b*ones(a). (Same convention if a
is a scalar).
Backslash stands for left division.
System feed back. S=G/.K evaluates S=G*(eye+K*G)^(-1) this operator avoid
simplification problem.
Comment // comments a line i.e lines which begin by // are ignored by the
interpreter.
SEE ALSO
inv, percent, backslash